home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / nntplib.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  4KB  |  106 lines

  1. #ifndef _SLRN_NNTPLIB_H
  2. #define _SLRN_NNTPLIB_H
  3. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  4.  *
  5.  * This file is part of slrn.
  6.  *
  7.  * Slrn is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  * 
  12.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  13.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15.  * for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with Slrn; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, 59 Temple Place - Suite 330, 
  20.  * Boston, MA  02111-1307, USA.
  21.  */
  22.  
  23.  
  24. typedef struct 
  25. {
  26. #define NNTP_RECONNECT_OK    0x1
  27.    unsigned int flags;
  28.    int init_state;
  29.    int can_post;
  30. #define NNTP_MAX_GROUP_NAME_LEN 80
  31. #define NNTP_MAX_CMD_LEN 512
  32.    char group_name [NNTP_MAX_GROUP_NAME_LEN + 1];
  33. #define NNTP_MAX_HOST_LEN    80
  34.    char host [NNTP_MAX_HOST_LEN + 1];
  35.    int port;
  36.    int code;
  37. #define NNTP_RSPBUF_SIZE    512
  38.    char rspbuf[NNTP_RSPBUF_SIZE];
  39.  
  40.    /* Capabilities-- if -1, probe server needs to be done */
  41.    int can_xover;
  42.    int can_xhdr;
  43.    int can_xpat;
  44.    int can_xgtitle;
  45.    
  46.    int (*auth_hook)(char *, char **, char **);
  47.  
  48.    SLTCP_Type *tcp;
  49. }
  50. NNTP_Type;
  51.  
  52. extern void nntp_disconnect_server (NNTP_Type *);
  53. extern int nntp_check_connection (NNTP_Type *);
  54. extern int nntp_reconnect_server (NNTP_Type *);
  55.  
  56. extern int nntp_server_cmd (NNTP_Type *, char *);
  57. extern int nntp_server_vcmd (NNTP_Type *, char *, ...);
  58. extern int nntp_write_server (NNTP_Type *, char *, unsigned int);
  59. extern int nntp_fgets_server (NNTP_Type *, char *, unsigned int);
  60. extern int nntp_fputs_server (NNTP_Type *, char *);
  61. extern int nntp_gets_server (NNTP_Type *, char *, unsigned int);
  62. extern int nntp_puts_server (NNTP_Type *, char *);
  63. extern int nntp_get_server_response (NNTP_Type *);
  64. extern int nntp_start_server_cmd (NNTP_Type *, char *);
  65. extern int nntp_start_server_vcmd (NNTP_Type *, char *, ...);
  66. extern int nntp_server_cmd (NNTP_Type *, char *);
  67. extern int nntp_server_vcmd (NNTP_Type *, char *, ...);
  68.  
  69. extern char *nntp_get_server_name (void);
  70.  
  71. extern int nntp_close_server (NNTP_Type *);
  72. extern NNTP_Type *nntp_open_server (char *, int);
  73.  
  74. extern int nntp_read_line (NNTP_Type *s, char *, unsigned int);
  75. extern int nntp_discard_output (NNTP_Type *s);
  76.  
  77.  
  78. extern int nntp_has_cmd (NNTP_Type *, char *);
  79. extern int nntp_list_newsgroups (NNTP_Type *);
  80. extern int nntp_list_active (NNTP_Type *);
  81. extern int nntp_end_post (NNTP_Type *);
  82. extern int nntp_post_cmd (NNTP_Type *);
  83. extern int nntp_list_active_cmd (NNTP_Type *);
  84.  
  85. extern int nntp_select_group (NNTP_Type *, char *, int *, int *);
  86. extern int nntp_xpat_cmd (NNTP_Type *, char *, int, int, char *);
  87. extern int nntp_xgtitle_cmd (NNTP_Type *, char *);
  88. extern int nntp_xhdr_cmd (NNTP_Type *, char *, int, char *, unsigned int);
  89.  
  90. extern int nntp_listgroup (NNTP_Type *, char *);
  91. extern int nntp_head_cmd (NNTP_Type *, int, char *, int *);
  92.  
  93. extern int nntp_xover_cmd (NNTP_Type *, int, int);
  94. extern int nntp_next_cmd (NNTP_Type *s, int *);
  95. extern int nntp_body_cmd (NNTP_Type *s, int, char *);
  96. extern int nntp_article_cmd (NNTP_Type *s, int, char *);
  97.  
  98. extern char *nntp_read_and_malloc (NNTP_Type *);
  99.  
  100. extern void (*NNTP_Connection_Lost_Hook) (NNTP_Type *);
  101. extern int (*NNTP_Authorization_Hook) (char *, char **, char **);
  102. extern FILE *NNTP_Debug_Fp;
  103. extern char *nntp_map_code_to_string (int);
  104.  
  105. #endif                       /* _SLRN_NNTPLIB_H */
  106.